home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Eagles Nest BBS 6
/
Eagles_Nest_Mac_Collection_Disc_6.TOAST
/
Windows
/
VBExamples
/
VB Examples.image
/
TSGLOB.BAS
< prev
next >
Wrap
BASIC Source File
|
1991-07-08
|
440b
|
23 lines
' TSGLOB.BAS
' Global declarations.
' The record structure for one line on a time sheet.
Type WorkRecordType
DescriptField As String * 25
IDField As String * 10
StartField As Double
FinishedField As Double
End Type
' The path name for storing time sheet files.
Global Const PathName$ = "C:\WorkDay"
' The extension name for time sheet files.
Global Const ExtName$ = "WKD"
' End of global declarations.